home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / syscall / sun3.md / RCS / vmStubs.s,v < prev   
Encoding:
Text File  |  1990-07-27  |  2.9 KB  |  141 lines

  1. head     1.5;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @# @;
  7.  
  8.  
  9. 1.5
  10. date     90.07.26.18.52.13;  author shirriff;  state Exp;
  11. branches ;
  12. next     1.4;
  13.  
  14. 1.4
  15. date     89.12.11.10.27.16;  author shirriff;  state Exp;
  16. branches ;
  17. next     1.3;
  18.  
  19. 1.3
  20. date     89.09.12.12.40.29;  author shirriff;  state Exp;
  21. branches ;
  22. next     1.2;
  23.  
  24. 1.2
  25. date     88.07.14.17.38.34;  author mendel;  state Exp;
  26. branches ;
  27. next     1.1;
  28.  
  29. 1.1
  30. date     88.06.19.14.30.09;  author ouster;  state Exp;
  31. branches ;
  32. next     ;
  33.  
  34.  
  35. desc
  36. @@
  37.  
  38.  
  39. 1.5
  40. log
  41. @Added mprotect.
  42. @
  43. text
  44. @/*
  45.  *
  46.  * vmStubs.s --
  47.  *
  48.  *     Stubs for the Vm_ system calls.
  49.  *
  50.  * Copyright 1988 Regents of the University of California
  51.  * Permission to use, copy, modify, and distribute this
  52.  * software and its documentation for any purpose and without
  53.  * fee is hereby granted, provided that the above copyright
  54.  * notice appear in all copies.  The University of California
  55.  * makes no representations about the suitability of this
  56.  * software for any purpose.  It is provided "as is" without
  57.  * express or implied warranty.
  58.  *
  59.  * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/vmStubs.s,v 1.4 89/12/11 10:27:16 shirriff Exp Locker: shirriff $ SPRITE (Berkeley)
  60.  *
  61.  */
  62. #include "userSysCallInt.h"
  63.  
  64. SYS_CALL(Vm_Cmd, SYS_VM_CMD)
  65. SYS_CALL(Vm_GetSegInfo, SYS_VM_GETSEGINFO)
  66. SYS_CALL(Vm_PageSize, SYS_VM_PAGESIZE)
  67. SYS_CALL(Vm_CreateVA, SYS_VM_CREATEVA)
  68. SYS_CALL(Vm_DestroyVA, SYS_VM_DESTROYVA)
  69. SYS_CALL(Vm_MapKernelIntoUser, SYS_VM_MAPKERNELINTOUSER)
  70. SYS_CALL(Vm_Mmap, SYS_VM_MMAP)
  71. SYS_CALL(Vm_Munmap, SYS_VM_MUNMAP)
  72. SYS_CALL(Vm_Msync, SYS_VM_MSYNC)
  73. SYS_CALL(Vm_Mlock, SYS_VM_MLOCK)
  74. SYS_CALL(Vm_Munlock, SYS_VM_MUNLOCK)
  75. SYS_CALL(Vm_Mincore, SYS_VM_MINCORE)
  76. SYS_CALL(Vm_Mprotect, SYS_VM_MPROTECT)
  77. @
  78.  
  79.  
  80. 1.4
  81. log
  82. @Added SYS_VM_{MSYNC,MLOCK,MUNLOCK,MINCORE}
  83. @
  84. text
  85. @d16 1
  86. a16 1
  87.  * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/vmStubs.s,v 1.3 89/09/12 12:40:29 shirriff Exp Locker: shirriff $ SPRITE (Berkeley)
  88. d33 1
  89. @
  90.  
  91.  
  92. 1.3
  93. log
  94. @Added mmap and munmap system calls.
  95. @
  96. text
  97. @d16 1
  98. a16 1
  99.  * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/vmStubs.s,v 1.2 88/07/14 17:38:34 mendel Exp Locker: shirriff $ SPRITE (Berkeley)
  100. d29 4
  101. @
  102.  
  103.  
  104. 1.2
  105. log
  106. @Changed comment characters from |* to /* */.
  107. @
  108. text
  109. @d16 1
  110. a16 1
  111.  * rcs = $Header: vmStubs.s,v 1.1 88/06/19 14:30:09 ouster Exp $ SPRITE (Berkeley)
  112. d27 2
  113. @
  114.  
  115.  
  116. 1.1
  117. log
  118. @Initial revision
  119. @
  120. text
  121. @d1 18
  122. a18 17
  123. |*
  124. |* vmStubs.s --
  125. |*
  126. |*     Stubs for the Vm_ system calls.
  127. |*
  128. |* Copyright 1988 Regents of the University of California
  129. |* Permission to use, copy, modify, and distribute this
  130. |* software and its documentation for any purpose and without
  131. |* fee is hereby granted, provided that the above copyright
  132. |* notice appear in all copies.  The University of California
  133. |* makes no representations about the suitability of this
  134. |* software for any purpose.  It is provided "as is" without
  135. |* express or implied warranty.
  136. |*
  137. |* rcs = $Header: vmStubs.s,v 2.0 87/08/11 09:31:22 brent Exp $ SPRITE (Berkeley)
  138. |*
  139.  
  140. @
  141.